home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / qw12add.arc / CLIPPER5.TEC next >
Text File  |  1990-12-19  |  3KB  |  121 lines

  1. ID:C5 Clipper API library & Clipper 5.0
  2. Quarterdeck Technical Note
  3. by Larry Rush
  4.  
  5. Re: Upgrading the API Library for Clipper to Clipper 5.0
  6. To: Clipper API developers
  7.  
  8. Quarterdeck has definite plans to upgrade the DESQview API
  9. Library for Clipper to provide full support for Clipper 5.0.
  10. Although no release date has been set, beta testing should
  11. begin early in November after the Fall Comdex.
  12.  
  13. Nevertheless, the current API LIbrary version 1.01 (designed
  14. to support Clipper Summer '87) can be easily modified to
  15. support Clipper 5.0.  All you need to do is modify the
  16. DVAPI.LIB library file.  Perform the following general steps:
  17.  
  18.   Install the Clipper UDFs onto your hard disk.
  19.   Recompile all the Clipper UDFs with Clipper 5.0 to create
  20.     new OBJ files.
  21.   Create a response file for the LIB.EXE library manager.
  22.   Use LIB.EXE to remove EXTOR.OBJ from DVAPI.LIB and replace
  23.     the old UDFs within DVAPI.LIB with the new 5.0 OBJs.
  24.  
  25. Note that the "C" and Assembler UDFs within DVAPI.LIB
  26. require no changes.
  27.  
  28. Take the following steps to convert the DVAPI.LIB library
  29. file to work with Clipper 5.0:
  30.  
  31. 1. If not already, install the library's Clipper source
  32. files (*.PRG) from the "Clipper Source" disk:
  33.  
  34.    Create a C:\DVAPI\PRG subdirectory under C:\DVAPI.
  35.    Log onto that subdirectory.
  36.    Insert the "Clipper Source" disk into drive A:.
  37.    Execute the self-extracting PRG.EXE PKUNZIP file:
  38.  
  39.      a:prg.exe
  40.  
  41. This will unzip all the PRG files into C:\DVAPI\PRG.
  42.  
  43. 2. Recompile all the PRG files with Clipper 5.0.  Create
  44. and run the following batch file MKOBJS.BAT containing:
  45.  
  46.    for %%f in (p_*.prg) do clipper %%f -m
  47.  
  48. This will create a P_*.OBJ file for each P_*.PRG file.
  49.  
  50. 3. Log onto C:\DVAPI where DVAPI.LIB should reside and
  51. create a DVAPIPRG.RSP response file for Microsoft's
  52. LIB.EXE containing:
  53.  
  54.    DVAPI
  55.    -c\EXTOR&
  56.    -+prg\P_APPRUN&
  57.    -+prg\P_FLDATG&
  58.    -+prg\P_FLDATP&
  59.    -+prg\P_FLDATS&
  60.    -+prg\P_KEYACC&
  61.    -+prg\P_KEYCLE&
  62.    -+prg\P_KEYINK&
  63.    -+prg\P_KEYINP&
  64.    -+prg\P_KEYKEY&
  65.    -+prg\P_KEYLAS&
  66.    -+prg\P_KEYNEX&
  67.    -+prg\P_KEYREA&
  68.    -+prg\P_KEYSET&
  69.    -+prg\P_KEYWAI&
  70.    -+prg\P_QRYFTA&
  71.    -+prg\P_WINACH&
  72.    -+prg\P_WINATB&
  73.    -+prg\P_WINATC&
  74.    -+prg\P_WINATG&
  75.    -+prg\P_WINATP&
  76.    -+prg\P_WINATS&
  77.    -+prg\P_WINATT&
  78.    -+prg\P_WINBRO&
  79.    -+prg\P_WINCCO&
  80.    -+prg\P_WINCLE&
  81.    -+prg\P_WINCLG&
  82.    -+prg\P_WINCSC&
  83.    -+prg\P_WINDAT&
  84.    -+prg\P_WINDBE&
  85.    -+prg\P_WINMAR&
  86.    -+prg\P_WINMEN&
  87.    -+prg\P_WINREA&
  88.    -+prg\P_WINRES&
  89.    -+prg\P_WINSAV&
  90.    -+prg\P_WINSET
  91.    NUL
  92.    DVAPI
  93.  
  94. 4. Remove EXTOR.OBJ from DVAPI.LIB (with Clipper 5.0
  95. it has been added to CLIPPER.LIB) and replace the old
  96. Summer '87 P_*.OBJ files within DVAPI.LIB with the new
  97. 5.0 P_*.OBJ files:
  98.  
  99.    Execute LIB.EXE with the DVAPIPRG.RSP response file:
  100.  
  101.      lib @dvapiprg.rsp
  102.  
  103. This creates a new DVAPI.LIB file which supports 5.0.
  104. You may now recompile your source programs with
  105. Clipper 5.0 and relink with RTLink for Clipper 5.0.
  106.  
  107. Beware!  The initial release of Clipper 5.0 has some
  108. major bugs due mostly to its VMM.  So, don't call
  109. Quarterdeck if you have problems executing Clipper 5.0
  110. programs linked with your new DVAPI.LIB.
  111.  
  112.  
  113. For further information, contact:
  114.  
  115.   Larry Rush (QOS)
  116.   (213) 392-9851 Phone
  117.   (213) 399-3802 Fax
  118.  
  119.         Copyright (C) 1990 by Quarterdeck Office Systems
  120.              * * *   E N D   O F   F I L E    * * * 
  121.